home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 224_01 / chmod.hlp < prev    next >
Text File  |  1987-01-03  |  1KB  |  20 lines

  1. NAME
  2.     chmod - change file attributes
  3.  
  4. SYNTAX
  5.     chmod [+r -r] [+h -h] [+s -s] [+a -a]  file_list
  6.  
  7. DESCRIPTION
  8.     Chmod can modify the file attributes, read-only (r), hidden (h),  
  9.     system (s), and archive (a).  The '+' preceeding the attribute letter  
  10.     will set that attribute on, the '-' will set the attribute off.  The
  11.     '-' option has higher precedence than the '+' option.  Chmod will print 
  12.     the file's current attribute to the standard output.
  13.  
  14.     The read-only attribute will protect the file from being written to or 
  15.     deleted, but the file will be seen in the directory listings. The hidden 
  16.     and the system attributes hide the file from normal directory listings.
  17.     The archive attribute is set whenever the file has been written to and
  18.     closed.  The hidden and system files will be listed if the -a option is 
  19.     used with the UTILIX ls command.
  20.